home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16_Src.lha / Python16_Source / Parser / pgen.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-03  |  274 b   |  18 lines

  1. #ifndef Py_PGEN_H
  2. #define Py_PGEN_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. /* Parser generator interface */
  8.  
  9. extern grammar *meta_grammar Py_PROTO((void));
  10.  
  11. struct _node;
  12. extern grammar *pgen Py_PROTO((struct _node *));
  13.  
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif /* !Py_PGEN_H */
  18.